home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 301-325 / 323 / linksound / playbeep.c < prev    next >
C/C++ Source or Header  |  1995-03-14  |  97b  |  10 lines

  1. /* simple example for Lattice C*/
  2.  
  3. extern void beep();
  4.  
  5. void main()
  6. {
  7. beep();
  8. }
  9. /* that's all */
  10.